﻿package %%%PACKAGE%%%;

import java.awt.image.BufferedImage;

class Image {

    public BufferedImage img;
    public int width;
    public int height;

    public Image(BufferedImage img) {
        this.img = img;
        width = img.getWidth();
        height = img.getHeight();
    }
}
